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; }
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; }