public EmployeeDto(string firstName, string lastName, string accountNr, string reg, string phone, AddressesDto address, DepartmentDto department, ShopDto shop, string email = "ingen") { FirstName = firstName; LastName = lastName; AccountNr = accountNr; Reg = reg; Email = email; Phone = phone; Address = address; Departments = department; Shop = shop; }
//Constructor public ShopDto(int id, AddressesDto address) { Id = id; Address = address; }
//Insert Constructor public ShopDto(AddressesDto address) { Address = address; }