public StampFieldChange(string numberChange, string numberOfPlots, string typeOfChange, string documentChange,
                         string dataChange)
 {
     NumberChange   = new StampFieldBase(numberChange, isNeedCompress: false);
     NumberOfPlots  = new StampFieldBase(numberOfPlots, isNeedCompress: false);
     TypeOfChange   = new StampFieldBase(typeOfChange);
     DocumentChange = new StampFieldBase(documentChange);
     DateChange     = new StampFieldBase(dataChange);
 }
예제 #2
0
 public StampFieldApproval(string departmentApproval, string responsiblePerson, string date)
 {
     DepartmentApproval = new StampFieldBase(departmentApproval, isVertical: true);
     ResponsiblePerson  = new StampFieldBase(responsiblePerson, isVertical: true);
     DateSignature      = new StampFieldBase(date, isVertical: true);
 }
예제 #3
0
 public StampFieldPerson(string actionType, string responsiblePerson, string date)
 {
     ActionType        = new StampFieldBase(actionType, isNeedCompress: false);
     ResponsiblePerson = new StampFieldBase(responsiblePerson);
     DateSignature     = new StampFieldBase(date);
 }