示例#1
0
 public StaffDto(string id, string name, string gmail, DetailDto position, StoreDto store, DetailDto status, string picUrl, string accessToken)
 {
     this.id          = id;
     this.name        = name;
     this.gmail       = gmail;
     this.position    = position;
     this.store       = store;
     this.status      = status;
     this.picUrl      = picUrl;
     this.accessToken = accessToken;
 }
示例#2
0
 public StaffDto(long id, string name, string gmail, DetailDto position, StoreDto store, DetailDto status, string picUrl, string authToken, string deviceToken)
 {
     this.id          = id;
     this.name        = name;
     this.gmail       = gmail;
     this.position    = position;
     this.store       = store;
     this.status      = status;
     this.picUrl      = picUrl;
     this.authToken   = authToken;
     this.deviceToken = deviceToken;
 }