Advertisement
klippa

Интерфейс, изуродованный при сопровождении программ

Oct 19th, 2017
168
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.49 KB | None | 0 0
  1. class Employee {
  2. public:
  3.     // ...
  4.     // открытые методы
  5.     FullName GetName() const;
  6.     Address GetAddress() const;
  7.     PhoneNumber GetWorkPhone() const;
  8.     // ...
  9.     bool IsJobClassificationValid( JobClassification jobClass );
  10.     bool IsZipCodeValid( Address address );
  11.     bool IsPhoneNumberValid( PhoneNumber phoneNumber );
  12.     SqlQuery GetQueryToCreateNewEmployee() const;
  13.     SqlQuery GetQueryToModifyEmployee() const;
  14.     SqlQuery GetQueryToRetrieveEmployee() const;
  15.     // ...
  16. private:
  17.     // ...
  18. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement