Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using OT_lib.Entity;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using OT_lib.DataAccess;
- namespace OT_lib.BusinessLayer
- {
- public class UserBusinessLayer
- {
- public UserBusinessLayer()
- {
- }
- public int CreateUser(UserEntity user){
- UsersDataAccess userService = new UsersDataAccess();
- try
- {
- userService.CreateUser(user);
- }
- catch (Exception ex)
- {
- throw ex;
- }
- return 0;
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment